home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
fg
/
fgl402e
/
expas.arj
/
TEMP
/
09-08.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-01-20
|
604b
|
33 lines
program main;
uses fgmain, fgflic, fgmisc;
var
frames : integer;
status : integer;
context : array [1..16] of byte;
begin
fg_initpm;
fg_setmode(19);
status := fg_flicopen('GLASS.FLI'+chr(0),context);
if (status = 0) then
begin
repeat
begin
frames := fg_flicplay(context,1,1);
fg_waitkey;
end;
until (frames = 0);
fg_flicdone(context);
end;
fg_setmode(3);
fg_reset;
if (status = -1) then
writeln('GLASS.FLI not found.')
else if (status = -2) then
writeln('GLASS.FLI is not an FLI or FLC file.');
end.